home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK1.toast / Development Kits (Disc 1) / AIAT 1.0.1 / Headers / Analysis / SimpleAnalysis.h < prev    next >
Encoding:
Text File  |  1997-09-11  |  579 b   |  30 lines  |  [TEXT/CWIE]

  1. // SimpleAnalysis.h
  2. //    Copyright:    © 1994 - 1996 by Apple Computer, Inc., all rights reserved.
  3.  
  4. #pragma once
  5. #ifndef SimpleAnalysis_h
  6. #define SimpleAnalysis_h
  7.  
  8. #pragma import on
  9.  
  10. #include "IAAnalysis.h"
  11.  
  12. #pragma IA_BEGIN_EXPORTS
  13.  
  14. const uint32        SimpleAnalysisType = 'Sim1';
  15.  
  16. class SimpleAnalysis : public IAAnalysis {
  17. public:
  18.                     SimpleAnalysis() : IAAnalysis(SimpleAnalysisType) {}
  19. //                    SimpleAnalysis(SimpleAnalysis& sa) : IAAnalysis(sa) {}
  20.  
  21.     IATokenStream*    MakeTokenStream(IADocText* text);
  22.     IATerm*            GetProtoTerm();
  23. };
  24.  
  25. #pragma IA_END_EXPORTS
  26.  
  27. #pragma import reset
  28.  
  29. #endif
  30.